home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / sysdeps / unix / common / configure.in < prev    next >
Encoding:
Text File  |  1994-09-29  |  761 b   |  24 lines

  1. GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
  2.  
  3. changequote(,)
  4. if [ ! "$inhibit_glue" ]; then
  5. changequote([,])
  6.  
  7. # Find out what this system calls `sys_siglist'.
  8. AC_COMPILE_CHECK(sys_siglist, ,
  9.    [extern char *sys_siglist[]; puts(*sys_siglist);],
  10.    AC_DEFINE(HAVE_SYS_SIGLIST))
  11. AC_COMPILE_CHECK(_sys_siglist, ,
  12.    [extern char *_sys_siglist[]; puts(*_sys_siglist);],
  13.    AC_DEFINE(HAVE__SYS_SIGLIST))
  14.  
  15. # Find out the name of the table the system's <ctype.h> uses for character
  16. # classification.  This is used by sysdeps/unix/common/glue-ctype.c.
  17. for ctype in _ctype_ __ctype_ __ctype _ctype__ _ctype _locp; do
  18. AC_COMPILE_CHECK($ctype, [#include <ctype.h>],
  19.          [$ctype[13];],
  20.          AC_DEFINE(HAVE_`echo $ctype | tr '[a-z]' '[A-Z]'`))
  21. done
  22.  
  23. fi
  24.